home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / othergnu / ms.zoo / makefile.gcc < prev    next >
Makefile  |  1990-04-17  |  326b  |  18 lines

  1. #
  2. # Makefile for GCC
  3. CROSSDIR = /dsrg/bammi/cross-gcc
  4. CROSSBIN = $(CROSSDIR)/bin
  5. CROSSLIB = $(CROSSDIR)/lib
  6.  
  7. CFLAGS  = -O -mshort -fomit-frame-pointer -fcombine-regs
  8. CC = cgcc
  9. LD = $(CROSSLIB)/gcc-ld
  10.  
  11. ms.tos: ms.o crts.o
  12.     $(LD) -o ms.tos -s  crts.o ms.o -lgnu16
  13.  
  14. ms.o: ms.c config.h
  15.  
  16. crts.o: crts.s
  17.     $(CC) $(CFLAGS) -c crts.s
  18.